Move the last button to the left where it does not affect the positioning
authorMatthias Clasen <mclasen@redhat.com>
Mon, 30 Jan 2006 05:05:07 +0000 (05:05 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 30 Jan 2006 05:05:07 +0000 (05:05 +0000)
2006-01-30  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkassistant.c (gtk_assistant_init): Move the
last button to the left where it does not affect
the positioning of forward/back.

ChangeLog
ChangeLog.pre-2-10
gtk/gtkassistant.c

index 5e01b21c8f8ee6039581237a81a05540a05af52f..c425d7ff118db61651f5ce19dadf29b0fec8d281 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-30  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkassistant.c (gtk_assistant_init): Move the
+       last button to the left where it does not affect
+       the positioning of forward/back.
+
 2006-01-29  Matthias Clasen  <mclasen@redhat.com>
 
        More GtkAssistant work, by Carlos Garnacho.
index 5e01b21c8f8ee6039581237a81a05540a05af52f..c425d7ff118db61651f5ce19dadf29b0fec8d281 100644 (file)
@@ -1,3 +1,9 @@
+2006-01-30  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkassistant.c (gtk_assistant_init): Move the
+       last button to the left where it does not affect
+       the positioning of forward/back.
+
 2006-01-29  Matthias Clasen  <mclasen@redhat.com>
 
        More GtkAssistant work, by Carlos Garnacho.
index d13200a7e52c6a6bf1f9354eada361b78bd678b3..b6e62bc50c56a2450954b323c4abaa8d6f49b1e3 100644 (file)
@@ -707,9 +707,9 @@ gtk_assistant_init (GtkAssistant *assistant)
   if (!alternative_button_order (assistant))
     {
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->apply, FALSE, FALSE, 0);
-      gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0);
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->forward, FALSE, FALSE, 0);
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->back, FALSE, FALSE, 0);
+      gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0);
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->cancel, FALSE, FALSE, 0);
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->close, FALSE, FALSE, 0);
     }
@@ -717,9 +717,9 @@ gtk_assistant_init (GtkAssistant *assistant)
     {
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->close, FALSE, FALSE, 0);
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->cancel, FALSE, FALSE, 0);
+      gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0);
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->back, FALSE, FALSE, 0);
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->forward, FALSE, FALSE, 0);
-      gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0);
       gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->apply, FALSE, FALSE, 0);
     }